home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #11 / CD 11 (Black) - 2001.iso / Fruity / GUSHERS.DXR / 00004_MainRoutines.ls < prev    next >
Encoding:
Text File  |  1998-04-13  |  11.2 KB  |  519 lines

  1. global gGusherObj, gSaturnObj, gSaucerObj, gGuyObj
  2.  
  3. on startMovie
  4.   global flushActive
  5.   set flushActive to 0
  6.   set the mouseDownScript to EMPTY
  7.   set the mouseUpScript to EMPTY
  8.   set the timeoutScript to EMPTY
  9. end
  10.  
  11. on stopMovie
  12.   global gPathDelim, gInitialColorDepth
  13.   if not IsShockWave() then
  14.     if the machineType <> 256 then
  15.       if not IsProj() then
  16.         closeXLib(the pathName & "JOHNNY.XOBJ")
  17.       end if
  18.     end if
  19.   end if
  20. end
  21.  
  22. on IsProj
  23.   return 1
  24. end
  25.  
  26. on IsShockWave
  27.   return 0
  28. end
  29.  
  30. on newGame
  31.   initObjects()
  32.   resetCursor()
  33. end
  34.  
  35. on initGame
  36.   cursor(4)
  37.   initGlobals()
  38.   if not IsShockWave() then
  39.     if the machineType = 256 then
  40.       set gPathDelim to "\"
  41.     else
  42.       set gPathDelim to ":"
  43.       if not IsProj() then
  44.         openXLib(the pathName & "JOHNNY.XOBJ")
  45.       end if
  46.     end if
  47.   end if
  48.   resetCursor()
  49. end
  50.  
  51. on initGlobals
  52.   global gInitialColorDepth, gInteruptFlag, gBlank, gFirstTime
  53.   set gFirstTime to 1
  54.   set gInitialColorDepth to 0
  55.   set gInteruptFlag to 0
  56.   set gBlank to 21
  57. end
  58.  
  59. on initObjects
  60.   set gGusherObj to new(script "gusherManager")
  61.   set gSaturnObj to new(script "SaturnObj")
  62.   set gSaucerObj to new(script "FlyingSaucerObj")
  63.   set gGuyObj to new(script "JumpingGuyObj")
  64. end
  65.  
  66. on slide chan, H2, V2, steps, waitTime
  67.   set deltaH to the locH of sprite chan - H2
  68.   set deltaV to the locV of sprite chan - V2
  69.   repeat with incr = 1 to steps
  70.     set theTime to the timer
  71.     set the locH of sprite chan to H2 + (deltaH * (steps - incr) / steps)
  72.     set the locV of sprite chan to V2 + (deltaV * (steps - incr) / steps)
  73.     updateScreen()
  74.     updateStage()
  75.     repeat while the timer < (theTime + waitTime)
  76.       updateScreen()
  77.     end repeat
  78.   end repeat
  79. end
  80.  
  81. on slideAnim chan, H2, V2, steps, waitTime, memList
  82.   set deltaH to the locH of sprite chan - H2
  83.   set deltaV to the locV of sprite chan - V2
  84.   set counter to 1
  85.   repeat with incr = 1 to steps
  86.     set theTime to the timer
  87.     set the locH of sprite chan to H2 + (deltaH * (steps - incr) / steps)
  88.     set the locV of sprite chan to V2 + (deltaV * (steps - incr) / steps)
  89.     set the memberNum of sprite chan to getAt(memList, counter)
  90.     set counter to counter + 1
  91.     if counter = (count(memList) + 1) then
  92.       set counter to 1
  93.     end if
  94.     updateScreen()
  95.     updateStage()
  96.     repeat while the timer < (theTime + waitTime)
  97.       updateScreen()
  98.       updateStage()
  99.     end repeat
  100.   end repeat
  101. end
  102.  
  103. on resetCursor
  104.   cursor(200)
  105.   cursor([2, 3])
  106. end
  107.  
  108. on updateScreen
  109.   UpdateSaturn()
  110.   UpdateAmbient()
  111.   UpdateGuy()
  112. end
  113.  
  114. on UpdateAmbient
  115.   if not soundBusy(1) then
  116.     puppetSnd(1, "GusherAmbient")
  117.   end if
  118. end
  119.  
  120. on UpdateSaturn
  121.   mUpdateSaturn(gSaturnObj)
  122. end
  123.  
  124. on UpdateSaucer
  125.   if the mouseDown then
  126.     mUpdateSaucer(gSaucerObj)
  127.   end if
  128. end
  129.  
  130. on UpdateGuy
  131.   mUpdateGuy(gGuyObj)
  132. end
  133.  
  134. on resetGame
  135.   go(the frame - 3)
  136.   Dissolvetransition()
  137.   updateStage()
  138. end
  139.  
  140. on testIfNear num1, num2, range
  141.   if abs(num1 - num2) <= range then
  142.     return 1
  143.   else
  144.     return 0
  145.   end if
  146. end
  147.  
  148. on Interupt
  149.   global gInteruptFlag
  150.   if gInteruptFlag then
  151.     set gInteruptFlag to 0
  152.     return 1
  153.   else
  154.     return 0
  155.   end if
  156. end
  157.  
  158. on SendMD
  159.   global gMDList
  160.   set CstNum to the mouseCast
  161.   if getPos(gMDList, CstNum) then
  162.     mouseUp(script CstNum)
  163.   end if
  164. end
  165.  
  166. on TFCIL
  167.   global gMDList
  168.   set CstNum to the mouseCast
  169.   if getPos(gMDList, CstNum) then
  170.     return 1
  171.   else
  172.     return 0
  173.   end if
  174. end
  175.  
  176. on AnimLin chan, soundName, castList, waitTime, interuptFlag
  177.   global gInteruptFlag
  178.   puppetSnd(soundName)
  179.   updateStage()
  180.   set exitFlag to 0
  181.   repeat while soundBusy(1)
  182.     repeat with theCastNum in castList
  183.       set theTime to the timer + waitTime
  184.       set the castNum of sprite chan to theCastNum
  185.       UStage(theTime)
  186.       if not soundBusy(1) then
  187.         exit repeat
  188.       end if
  189.       if the mouseDown and interuptFlag then
  190.         if TFCIL() then
  191.           set exitFlag to 1
  192.           exit repeat
  193.         end if
  194.       end if
  195.     end repeat
  196.     if exitFlag then
  197.       exit repeat
  198.     end if
  199.     updateTimer()
  200.   end repeat
  201.   sound stop 1
  202.   if exitFlag then
  203.     set gInteruptFlag to 1
  204.   end if
  205. end
  206.  
  207. on AnimLinNL chan, soundName, castList, waitTime, interuptSound, interuptFlag
  208.   global gAntManagerObj, gInteruptFlag
  209.   puppetSnd(1, soundName)
  210.   updateStage()
  211.   set exitFlag to 0
  212.   repeat with theCastNum in castList
  213.     set theTime to the timer + waitTime
  214.     set the castNum of sprite chan to theCastNum
  215.     UStage(theTime)
  216.     if the mouseDown and interuptFlag then
  217.       if TFCIL() then
  218.         set exitFlag to 1
  219.         exit repeat
  220.       end if
  221.     end if
  222.     if the pAntPresent of gAntManagerObj then
  223.       updateAnt()
  224.     end if
  225.     updateSun()
  226.     updateAnt()
  227.   end repeat
  228.   if interuptSound then
  229.     sound stop 1
  230.   end if
  231.   if exitFlag then
  232.     set gInteruptFlag to 1
  233.   end if
  234. end
  235.  
  236. on AnimRand chan, soundName, castList, waitTime, interuptFlag
  237.   global gInteruptFlag
  238.   puppetSnd(soundName)
  239.   updateStage()
  240.   set exitFlag to 0
  241.   repeat while soundBusy(1)
  242.     set animList to Shuffle(castList)
  243.     repeat with theCastNum in castList
  244.       set theTime to the timer + Randomize(waitTime, 3)
  245.       set the castNum of sprite chan to theCastNum
  246.       UStage(theTime)
  247.       if not soundBusy(1) then
  248.         exit repeat
  249.       end if
  250.       if the mouseDown and interuptFlag then
  251.         if TFCIL() then
  252.           set exitFlag to 1
  253.           exit repeat
  254.         end if
  255.       end if
  256.     end repeat
  257.     if exitFlag then
  258.       exit repeat
  259.     end if
  260.     updateTimer()
  261.   end repeat
  262.   sound stop 1
  263.   if exitFlag then
  264.     set gInteruptFlag to 1
  265.   end if
  266. end
  267.  
  268. on Shuffle startList
  269.   set shuffleList to []
  270.   set copyList to value(string(startList))
  271.   set listSize to count(startList)
  272.   repeat with z = 1 to listSize
  273.     set index to random(count(copyList))
  274.     add(shuffleList, getAt(copyList, index))
  275.     deleteAt(copyList, index)
  276.   end repeat
  277.   return shuffleList
  278. end
  279.  
  280. on MaybeReset
  281.   if IsShockWave() or (the machineType = 256) then
  282.     if the timeoutScript = "ResetEvents" then
  283.       ResetEvents()
  284.     end if
  285.   end if
  286. end
  287.  
  288. on RChance chance
  289.   if RandFloat() < chance then
  290.     return 1
  291.   else
  292.     return 0
  293.   end if
  294. end
  295.  
  296. on RandFloat
  297.   return random(1000) / 1000.0
  298. end
  299.  
  300. on LProb number, val1, prob1, val2, prob2
  301.   if val1 <> val2 then
  302.     set chance to ((prob1 - prob2) * (number - val2) / (val1 - val2)) + prob2
  303.     if chance <= 0 then
  304.       return 0
  305.     else
  306.       if chance >= 1 then
  307.         return 1
  308.       else
  309.         if RandFloat() <= chance then
  310.           return 1
  311.         else
  312.           return 0
  313.         end if
  314.       end if
  315.     end if
  316.   else
  317.     return 0
  318.   end if
  319. end
  320.  
  321. on PR
  322.   global aFighterList
  323.   set myScore to the score of getAt(aFighterList, 1)
  324.   set hisScore to the score of getAt(aFighterList, 2)
  325.   set tvalue to 2 * (myScore - hisScore) / 100.0
  326.   if tvalue <= 0.29999999999999999 then
  327.     set value to 0.29999999999999999
  328.   end if
  329.   return value
  330. end
  331.  
  332. on setPuppets theList, state
  333.   repeat with theChan in theList
  334.     puppetSprite(theChan, state)
  335.     set the stretch of sprite theChan to 0
  336.   end repeat
  337. end
  338.  
  339. on setStretch theList, state
  340.   repeat with theChan in theList
  341.     set the stretch of sprite theChan to 0
  342.   end repeat
  343. end
  344.  
  345. on puppetSnd chan, sound
  346.   if (chan > 4) or stringp(chan) then
  347.     if chan <> EMPTY then
  348.       puppetSound(1, chan)
  349.     end if
  350.   else
  351.     if stringp(sound) then
  352.       if sound <> EMPTY then
  353.         puppetSound(chan, sound)
  354.       end if
  355.     else
  356.       if sound <> 0 then
  357.         puppetSound(chan, sound)
  358.       end if
  359.     end if
  360.   end if
  361. end
  362.  
  363. on SwitchCast chan1, chan2
  364.   set hold1 to the castNum of sprite chan1
  365.   set the castNum of sprite chan1 to the castNum of sprite chan2
  366.   set the castNum of sprite chan2 to hold1
  367. end
  368.  
  369. on setCstLoc chan, CstNum, locP
  370.   set the memberNum of sprite chan to CstNum
  371.   set the loc of sprite chan to locP
  372. end
  373.  
  374. on Randomize center, range
  375.   return center + random(range) - (range / 2)
  376. end
  377.  
  378. on wait waitTicks
  379.   set theTime to the timer + waitTicks
  380.   repeat while the timer < theTime
  381.   end repeat
  382. end
  383.  
  384. on UStage theTime
  385.   updateStage()
  386.   repeat while the timer < theTime
  387.   end repeat
  388. end
  389.  
  390. on Dissolvetransition
  391.   if not IsShockWave() then
  392.     if the machineType <> 256 then
  393.       puppetTransition(51, 2)
  394.     else
  395.       puppetTransition(24, 2, 12)
  396.     end if
  397.   end if
  398. end
  399.  
  400. on sfo chan, fadeOutTime
  401.   set startLevel to the volume of sound chan
  402.   set theEndTime to the timer + fadeOutTime
  403.   repeat while the timer <= theEndTime
  404.     set theTimeLeft to theEndTime - the timer
  405.     set thePercent to theTimeLeft / (fadeOutTime * 1.0)
  406.     set the volume of sound chan to integer(startLevel * thePercent)
  407.   end repeat
  408.   set the volume of sound chan to 0
  409.   sound stop chan
  410.   if chan = 1 then
  411.     puppetSound(0)
  412.   end if
  413.   set the volume of sound chan to startLevel
  414. end
  415.  
  416. on sfd chan, fadeTime, endLevel
  417.   set startLevel to the volume of sound chan
  418.   set delta to startLevel - endLevel
  419.   set theEndTime to the timer + fadeTime
  420.   repeat while the timer <= theEndTime
  421.     set theTimeLeft to theEndTime - the timer
  422.     set thePercent to theTimeLeft / (fadeTime * 1.0)
  423.     set the volume of sound chan to endLevel + integer(delta * thePercent)
  424.   end repeat
  425.   set the volume of sound chan to endLevel
  426. end
  427.  
  428. on Flush
  429.   global gFlush
  430.   if (the machineType <> 256) and not IsShockWave() then
  431.     set gFlush to Johnny(mnew)
  432.     gFlush(mFlush)
  433.     gFlush(mdispose)
  434.   else
  435.     PCFlush()
  436.   end if
  437. end
  438.  
  439. on PCFlush
  440.   global oldkeyD, oldMd, oldMu, flushActive, oldTO, oldTL
  441.   if flushActive then
  442.     set the trace to 0
  443.     exit
  444.   end if
  445.   set oldkeyD to the keyDownScript
  446.   set oldMd to the mouseDownScript
  447.   set oldMu to the mouseUpScript
  448.   set oldTO to the timeoutScript
  449.   set oldTL to the timeoutLength
  450.   set the keyDownScript to "dontPassEvent"
  451.   set the mouseDownScript to "dontPassEvent"
  452.   set the mouseUpScript to "dontPassEvent"
  453.   set the timeoutLength to 5
  454.   set the timeoutScript to "ResetEvents"
  455.   set flushActive to 1
  456. end
  457.  
  458. on ResetEvents
  459.   global oldkeyD, oldMd, oldMu, flushActive, oldTO, oldTL
  460.   set the keyDownScript to oldkeyD
  461.   if oldMd = "DontPassEvent" then
  462.     set the mouseDownScript to EMPTY
  463.   else
  464.     set the mouseDownScript to oldMd
  465.   end if
  466.   if oldMu = "DontPassEvent" then
  467.     set the mouseUpScript to EMPTY
  468.   else
  469.     set the mouseUpScript to oldMu
  470.   end if
  471.   set the timeoutScript to oldTO
  472.   set the timeoutLength to oldTL
  473.   set flushActive to 0
  474. end
  475.  
  476. on USRL theList, newValue
  477.   set tempList to []
  478.   set listSize to count(theList)
  479.   repeat with zCount = 1 to listSize - 1
  480.     add(tempList, getAt(theList, zCount + 1))
  481.   end repeat
  482.   add(tempList, newValue)
  483.   return tempList
  484. end
  485.  
  486. on Dist PtA, PtB
  487.   set vector to PtB - PtA
  488.   set distance to sqrt(listSum(vector * vector))
  489.   return distance
  490. end
  491.  
  492. on listSum theList
  493.   set sum to 0
  494.   repeat with entry in theList
  495.     if not (integerp(entry) or floatp(entry)) then
  496.       set entry to 0
  497.     end if
  498.     set sum to sum + entry
  499.   end repeat
  500.   return sum
  501. end
  502.  
  503. on envTest
  504.   global gPathDelim, gInitialColorDepth
  505.   if the machineType <> 256 then
  506.     if the soundLevel = 0 then
  507.       alert("The sound level must be set above 0 for Bob and Weave to Box. The sound level is being set to 5.")
  508.       set the soundLevel to 5
  509.     end if
  510.     if IsProj() then
  511.       if the colorDepth <> 8 then
  512.         alert("Your monitor is being set to 8 bit to optimize performance. Your monitor will automatically be set back to " & the colorDepth & " when you quit.")
  513.         set gInitialColorDepth to the colorDepth
  514.         set the colorDepth to 8
  515.       end if
  516.     end if
  517.   end if
  518. end
  519.